博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6229 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
我的友情链接
查看>>
Windows脚本初探之PowerShell流程控制while
查看>>
ASP.NET MVC 2.0 3.0 4.0分離項目區域實現多人開發管理方案
查看>>
教育小结
查看>>
用TCP/IP实现自己简单的应用程序协议:最后再返回来看HTTP协议
查看>>
DS4300 更换控制器电池 (一)
查看>>
解决跨浏览器下PHP下载文件名中的中文乱码问题
查看>>
Windows Azure Platform 系列文章,第三章 使用Azure创建快照 和 还原系统
查看>>
CentOS7.2系统环境中安装saltstack详细配置过程讲解
查看>>
Oracle 官方文档阅读指南
查看>>
”每次打开visio 2013 pro 均显示windows都是正在设置,请稍后”的精准解决方式!...
查看>>
我的友情链接
查看>>
mysql导入导出
查看>>
计算机常用端口
查看>>
ASP.NET MVC系列:ASP.NET MVC简介
查看>>
我的友情链接
查看>>
Linux内核信号处理机制介绍
查看>>
oraclle数据库建表空间和建用户,删除表空间
查看>>
How to Configure Network Static IP Address and Manage Services on RHEL/CentOS 7.0
查看>>
Windows Phone 7 学习参考网址大全
查看>>